home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1997 February / EnigmA AMIGA RUN 15 (1997)(G.R. Edizioni)(IT)[!][issue 1997-02][PLANET CD V].iso / progs / editor / frexxed / fpl / dicehelp.fpl.readme < prev    next >
Text File  |  1996-02-14  |  2KB  |  44 lines

  1. #############################################################################
  2. File:            DICEHelp.FPL
  3. Author:          Andreas Vögele
  4. Email:           andreas@porky.apl.s.shuttle.de, FidoNet 2:246/1115.6
  5. Short:           Look up things in includes and autodocs using DICEHelp
  6. Version:         1.1
  7. Date:            14.2.96
  8. Local settings:  
  9. Global settings: "DICEHelp_activation", "DICEHelp_executable"
  10. Keysequence:     Add to your favorite key!
  11. Type:            function, menu
  12. Prereq:          ReadOnly.FPL
  13. Copyright:       GNU General Public License
  14. #############################################################################
  15.  
  16. FUNCTION
  17.   By using this script you can look up any keyword using the external program
  18. DICEHelp that comes with the C compiler DICE to find things in the includes
  19. and autodocs.
  20.  
  21.   To install the script you should put it in your FrexxEd:Startup drawer.
  22. The script will add a menuitem called "DICEHelp..." to the Settings/Program
  23. menu. In the preferences window you can set the pathname of the DICEHelp
  24. executable and the value of the info variable "DICEHelp_activation". This
  25. variable controls whether the text cursor goes to the newly created help
  26. buffer or stays in the old buffer after a keyword has been looked up.
  27.  
  28.   The function DICEHelp_lookup() will look up the keyword under the text
  29. cursor or, if there isn't any word under the cursor, prompt you for a
  30. keyword. You can assign the function to the key sequence 'Alt 1', for
  31. example, by putting the command AssignKey("DICEHelp_lookup();", "Alt 1");
  32. in your User.FPL file.
  33.  
  34.   Most parts of DICEHelp.FPL and this documentation were taken from
  35. CHelp.FPL and CHelp.FPL.README written by Mathias Axelsson.
  36.  
  37. HISTORY
  38.   1.1: Initial revision
  39.  
  40. BUGS
  41.   DICEHelp always returns "Corrupt line in s:DICEHelp.index", if you try
  42. to look up the last function in an autodoc file. This seems to be a bug in
  43. DICEHelp 1.6 or the index files built with MakeIndex 1.5.
  44.